home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / graphics / 3dvect30.arj / TEMPLATE.ASM < prev    next >
Assembly Source File  |  1993-11-18  |  628b  |  29 lines

  1.         .386p
  2.         jumps
  3.  
  4. code32  segment para public use32
  5.         assume cs:code32, ds:code32
  6.  
  7.         include pmode.inc       ; protected mode externals by TRAN
  8.         include xmouse.inc      ; xmode mouse externals
  9.         include xmode.inc       ; xmode externals by matt pritchard
  10.         include irq.inc
  11.         include 3d.inc
  12.         include stars.inc
  13.         include font.inc
  14.  
  15.         include macros.inc
  16.         include equ.inc
  17.  
  18. ; your code goes here, all external routines/variables are defined above
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. ; now just link your code with the other modules...
  26.  
  27. code32  ends
  28.         end
  29.